home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Wayzata's Best of Shareware PC/Windows 1
/
Wayzata's Best of Shareware for PC-Windows - Release 1 - Wayzata Technology (1993).iso
/
mac
/
DOS
/
GRAPHICS
/
LISS151
/
ERROR_FN.H
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-10
|
509b
|
24 lines
/**************************
ERROR_FN.H
enums and function prototypes for error handling routines
for program LISSAJOU
History:
Version 1.4:
02/11/92 ACC create this file to get garbage out of DEFINES.H
*************************/
#ifndef _ERROR_FN
#define _ERROR_FN
/* error types */
enum {EFOPEN=1, EFCLOSE, EGRAPH, EMEM, EUNK};
/* ========================= function prototypes ========================== */
void error_fn(int errnum, char *msg);
#endif